home *** CD-ROM | disk | FTP | other *** search
/ Resource for Source: C/C++ / Resource for Source - C-C++.iso / misc_src / knowhow4 / prn_form.h < prev    next >
C/C++ Source or Header  |  1995-11-01  |  553b  |  31 lines

  1. #ifndef _FORM_H_
  2. #define _FORM_H_
  3.  
  4. #include "bl.h"
  5. #include "textmenu.h"
  6. #include "button.h"
  7. #include "ceditl.h"
  8.  
  9. class Form : public Bl
  10.     {
  11.     protected:
  12.     TextMenu* printer_type;
  13.     TextMenu* density;
  14.     TextMenu* paper;
  15.     CaptureEditLine* pass;
  16.     CaptureEditLine* lt;
  17.     CaptureEditLine* mx;
  18.     CaptureEditLine* my;
  19.     CaptureEditLine* dx;
  20.     CaptureEditLine* dy;
  21.     CaptureEditLine* copies;
  22.     Button* go;
  23.     public:
  24.     int p_t, d, pap, pas, l, m_x, m_y, d_x, d_y, cop;
  25.  
  26.     Form();
  27.     virtual void exe(int act = 0);
  28.  
  29.     };
  30.  
  31. #endif _FORM_H_